home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ WinNT AutoLogin NW Settings.xpl < prev    next >
Text File  |  2001-05-05  |  1KB  |  53 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="2"
  4. "UIPATH"="Network\Auto Login\NetWare"
  5. "NAME"="Settings"
  6. "VERSION"="1.01"
  7. "LANGUAGE"="VBScript"
  8. "OSVERSION"="0101"
  9. "TEXT 1"="User name"
  10. "TEXT 2"="Password"
  11. "DESCRIPTION 1"="Auto login can be used to eliminate the "Press Ctrl+Alt+Del to login" screen."
  12. "DESCRIPTION 2"="Enter your user information here."
  13. "DESCRIPTION 3"="When you are finished, apply your changes and select the "General" plug-in to activate auto logon."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18.  
  19.  
  20. sRP="HKLM\SOFTWARE\NOVELL\NWGINA\Login\"
  21. Sub Plugin_Initialize 
  22.  if RegPathExists(sRP) then
  23.   s=RegReadValue(srp&"DefaultNetWareUserName")
  24.   SetUIElement 1,s
  25.  
  26.   s=RegReadValue(srp&"DefaultNetWarePassword")
  27.   SetUIElement 2,s
  28.  else
  29.   Disable
  30.  end if
  31. End Sub
  32.  
  33. Sub Plugin_CheckData(ElementIndex)
  34. End Sub
  35.  
  36.  
  37. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  38.  s=GetUIElement(1)
  39.  Call RegWriteValue(srp&"DefaultNetWareUserName",s,1)
  40.  
  41.  s=GetUIElement(2)
  42.  Call RegWriteValue(srp&"DefaultNetWarePassword",s,1)
  43.  
  44.  
  45.  Call Logoff()
  46. End Sub
  47.  
  48. Sub Plugin_Terminate 
  49. End Sub
  50.  
  51.  
  52.  
  53.